Remove "Internal" from docstrings of defvars
authorJustin Burkett <justin@burkett.cc>
Wed, 21 Feb 2024 01:00:22 +0000 (20:00 -0500)
committerJustin Burkett <justin@burkett.cc>
Wed, 21 Feb 2024 01:00:22 +0000 (20:00 -0500)
The internal status is implied by the double hyphen in the name.

which-key.el

index 88cca1796a357f529040afedd5b87230c21a301b..e4e5aaadde3ee22a1cbff7c921bac2e955c97c9f 100644 (file)
@@ -715,26 +715,24 @@ Used in functions like `which-key-show-keymap'.")
 ;;; Internal Vars
 
 (defvar which-key--buffer nil
-  "Internal: Holds reference to which-key buffer.")
+  "Holds reference to which-key buffer.")
 (defvar which-key--timer nil
-  "Internal: Holds reference to open window timer.")
+  "Holds reference to open window timer.")
 (defvar which-key--secondary-timer-active nil
-  "Internal: Non-nil if the secondary timer is active.")
+  "Non-nil if the secondary timer is active.")
 (defvar which-key--paging-timer nil
-  "Internal: Holds reference to timer for paging.")
+  "Holds reference to timer for paging.")
 (defvar which-key--frame nil
-  "Internal: Holds reference to which-key frame.
+  "Holds reference to which-key frame.
 Used when `which-key-popup-type' is frame.")
 (defvar which-key--echo-keystrokes-backup nil
-  "Internal: Backup the initial value of `echo-keystrokes'.")
+  "Backup the initial value of `echo-keystrokes'.")
 (defvar which-key--prefix-help-cmd-backup nil
-  "Internal: Backup the value of `prefix-help-command'.")
+  "Backup the value of `prefix-help-command'.")
 (defvar which-key--last-try-2-loc nil
-  "Internal: Last location of side-window when two locations
-used.")
+  "Last location of side-window when two locations used.")
 (defvar which-key--automatic-display nil
-  "Internal: Non-nil if popup was triggered with automatic
-update.")
+  "Non-nil if popup was triggered with automatic update.")
 (defvar which-key--debug-buffer-name nil
   "If non-nil, use this buffer for debug messages.")
 (defvar which-key--multiple-locations nil)